home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / orca < prev    next >
Text File  |  2009-10-19  |  6KB  |  182 lines

  1. #!/bin/sh
  2. #
  3. # Orca
  4. #
  5. # Copyright 2006-2008 Sun Microsystems Inc.
  6. #
  7. # This library is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU Library General Public
  9. # License as published by the Free Software Foundation; either
  10. # version 2 of the License, or (at your option) any later version.
  11. #
  12. # This library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. # Library General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Library General Public
  18. # License along with this library; if not, write to the
  19. # Free Software Foundation, Inc., Franklin Street, Fifth Floor,
  20. # Boston MA  02110-1301 USA.
  21.  
  22. # This script performs some clean up and will run Orca.  It will also
  23. # rerun Orca if it detects that Orca died an unnatural death.
  24.  
  25. # __id__        = "$Id: orca.in,v 1.22 2006/12/08 16:21:25 wwalker Exp $"
  26. # __version__   = "$Revision: 1.22 $"
  27. # __date__      = "$Date: 2006/12/08 16:21:25 $"
  28. # __copyright__ = "Copyright (c) 2006-2008 Sun Microsystems Inc."
  29. # __license__   = "LGPL"
  30.  
  31. # Set the user's $PATH for this script.
  32. #
  33. PATH="${PATH}:/usr/bin:/usr/sbin:/bin:/usr/X11R6/bin"
  34. export PATH
  35.  
  36. # Save the arguments away.
  37. #
  38. ARGS="$*"
  39.  
  40. # Save away XMODMAP settings we might change.
  41. #
  42. saveXmodmap() 
  43. {
  44.     # We'll save and restore the Caps_Lock as a modifier just in case
  45.     # the user is using the Caps_Lock as the Orca modifier key.  We
  46.     # will also do so with the KP_Insert key since we want to make
  47.     # sure it only produces the keysyms we expect (it produces
  48.     # KP_Insert and KP_0 by default).  See the use of xmodmap in
  49.     # orca.py:loadUserSettings for the other part of what's going on.
  50.     # 
  51.     # [[[WDW: we probably should save/restore the autorepeat value of
  52.     # the Orca modifier key and turn the autorepeat off when Orca is
  53.     # running.  That can be done using the 'xset' utility, though
  54.     # turning it on/off is easy, but getting the current state is not
  55.     # straightforward.]]]
  56.     #
  57.     if [ "x$DISPLAY" != "x" ] ; then
  58.         CAPSLOCKSETTING=`xmodmap | grep Caps_Lock | cut -f1`
  59.         KPINSERTSETTING=`xmodmap -pke | grep KP_Insert`
  60.         INSERTSETTING=`xmodmap -pke | grep Insert | grep -v KP_`
  61.     fi
  62. }
  63.  
  64. # Restore XMODMAP settings we may have changed.
  65. #
  66. restoreXmodmap()
  67. {
  68.     if [ "x$CAPSLOCKSETTING" != "x" ] ; then
  69.         xmodmap -e "add $CAPSLOCKSETTING = Caps_Lock" > /dev/null 2>&1
  70.     fi
  71.     if [ "x$KPINSERTSETTING" != "x" ] ; then
  72.         xmodmap -e "$KPINSERTSETTING" > /dev/null 2>&1
  73.     fi
  74.     if [ "x$INSERTSETTING" != "x" ] ; then
  75.         xmodmap -e "$INSERTSETTING" > /dev/null 2>&1
  76.     fi
  77. }
  78.  
  79. # Cleans up any orca-related processes that might be running,
  80. # restricting it to those processes owned by the user. These include
  81. # orca itself, any gnome-speech synthesis drivers, and festival
  82. # processes running in server mode.
  83. #
  84. cleanup()
  85. {
  86.     USERID=`id | cut -f2 -d= | cut -f1 -d\(`
  87.     PIDS=`ps -eo pid,ruid,args | grep $USERID | \
  88.     egrep "orca[.]orca|OAFIID[:]GNOME_Speech|OAFIID[:]GNOME_Magnifier|festival [-][-]server"|\
  89.     grep -v grep | awk '{ print $1 }'`
  90.     IFS='
  91.     '
  92.     PIDS=`echo $PIDS`
  93.     if [ "x$PIDS" != "x" ] ; then
  94.         kill -9 $PIDS > /dev/null 2>&1
  95.     fi
  96.     restoreXmodmap
  97. }
  98.  
  99. trap cleanup HUP QUIT TERM INT ABRT
  100.  
  101. # Runs orca.
  102. #
  103. runOrca()
  104. {
  105.     saveXmodmap
  106.     exec /usr/bin/python -c "import orca.orca; orca.orca.main()" "$ARGS"
  107.     restoreXmodmap
  108. }
  109.  
  110. # Orca will fall into a text-based question and answer session if the
  111. # user has not configured orca and/or accessibility yet.  We will
  112. # force that to happen in the foreground (i.e., RUNONCE=true).  In
  113. # addition, if the user passes any command line arguments to orca, we
  114. # will run it in the foreground as well to avoid a situation where
  115. # orca dumps itself into the text-based setup utility.
  116. #
  117. # We make a special exception for gdm, which is used to handle the
  118. # accessible login.  If we're running as gdm, we assume everything is
  119. # all set and we don't need to muck around.
  120. #
  121. if [ "x$LOGNAME" != "xgdm" ] ; then
  122.     if [ "$1" = "-sudo" ]; then
  123.         shift
  124.         ACCESSIBILITY_ENABLED=`sudo -u "$1" gconftool-2 \
  125.         --get /desktop/gnome/interface/accessibility`
  126.         shift
  127.         ARGS="$*"
  128.     else
  129.         ACCESSIBILITY_ENABLED=`gconftool-2 \
  130.     --get /desktop/gnome/interface/accessibility`
  131.     fi
  132.     if [ "x$ACCESSIBILITY_ENABLED" != "xtrue" ] ; then
  133.         # Because we will be running Orca in text-setup mode, we want to
  134.         # make sure it is run in a terminal window.  If we're already in
  135.         # a terminal, this is great.  If not, we spawn a gnome-terminal
  136.         # and run orca in it.
  137.         #
  138.         tty -s && IN_TTY="true" || IN_TTY="false"
  139.         if [ "x$IN_TTY" = "xfalse" ] ; then
  140.             exec gnome-terminal -x $0 $ARGS
  141.         exit
  142.         fi
  143.     fi
  144. fi
  145.  
  146. if echo "$ARGS" | grep -- "-q" > /dev/null; then
  147.     # If the user has done -q or --quit, that means to tell any
  148.     # existing orca process to quit.  So, we just do a cleanup.
  149.     #
  150.     cleanup
  151. else
  152.     # If the user passed in a flag that results in orca only
  153.     # outputting data to the console, don't kill any other orca
  154.     # process.  We do this by looking for flags that *should* result
  155.     # in a cleanup (i.e., every legal command except -?, --help, -v,
  156.     # --version, -l, and --list-apps).  This way, if the user
  157.     # erroneously types an illegal command line argument, the help
  158.     # text is emitted and the other orca is not killed.
  159.     #
  160.     if [ "x$ARGS" = "x" ] ; then
  161.         CLEANUP=1
  162.     else
  163.         CLEANUP=`echo "$ARGS" | egrep -c "\-s|\-t|\-n|\-u|\-e|\-d"`
  164.     fi
  165.  
  166.     # Clean up before running orca to get anything that might
  167.     # be laying around.
  168.     #
  169.     if [ $CLEANUP -gt 0 ] ; then
  170.     cleanup
  171.     fi
  172.  
  173.     runOrca
  174.  
  175.     # Clean up after running orca in case things were not 
  176.     # shutdown cleanly (e.g., speech).
  177.     #
  178.     if [ $CLEANUP -gt 0 ] ; then
  179.     cleanup
  180.     fi
  181. fi
  182.